home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 441 b | 27 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class AUX_MANIFEST_ARRAY3
-
- creation make
-
- feature {NONE}
-
- list: ARRAY[STRING];
- -- The contents of the aux_manifest_array3.
-
- feature
-
- make(l: ARRAY[STRING]) is
- require
- l /= Void;
- not l.empty;
- do
- list := l;
- ensure
- list = l;
- end;
-
- end -- AUX_MANIFEST_ARRAY3
-
-